home *** CD-ROM | disk | FTP | other *** search
- /*
- ** Our "Math.h" correctly deals with redundent includes and makes
- ** sure M_PI is defined to make srt portable between bezier (Ultrix)
- ** and si (4.2bsd on RT).
- */
-
- #ifndef MATHINCLUDED
- # define MATHINCLUDED
- # include <math.h>
- # ifndef M_PI
- # define M_PI 3.14159265358979323846
- # define M_PI_2 1.57079632679489661923
- # define M_PI_4 0.78539816339744830962
- # define M_1_PI 0.31830988618379067154
- # define M_2_PI 0.63661977236758134308
- # define M_2_SQRTPI 1.12837916709551257390
- # endif M_PI
- #endif MATHINCLUDED
-